home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 2.iso / dist / fw_ghostscript.idb / usr / freeware / bin / eps2eps.z / eps2eps
Text File  |  2002-04-08  |  434b  |  21 lines

  1. #!/bin/sh
  2. # $Id: eps2eps,v 1.3 2001/06/22 16:09:22 lpd Exp $
  3. # "Distill" Encapsulated PostScript.
  4.  
  5. OPTIONS="-dDEVICEWIDTH=250000 -dDEVICEHEIGHT=250000"
  6. while true
  7. do
  8.     case "$1" in
  9.     -*) OPTIONS="$OPTIONS $1" ;;
  10.     *)  break ;;
  11.     esac
  12.     shift
  13. done
  14.  
  15. if [ $# -ne 2 ]; then
  16.     echo "Usage: `basename $0` ...switches... input.eps output.eps" 1>&2
  17.     exit 1
  18. fi
  19.  
  20. exec gs -q -sDEVICE=epswrite "-sOutputFile=$2" -dNOPAUSE -dBATCH -dSAFER $OPTIONS "$1"
  21.